home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
docs
/
help
/
aguidehowwrite.lha
/
amigaguide_how_to_write
/
miscellaneous
/
Testprogram_close.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1997-07-31
|
331 b
|
13 lines
/* A test ARexx Program for Multiview/Amigaguide */
CALL CLOSE('STDOUT')
CALL OPEN('STDOUT','CON:50/60/510/70/TEST WINDOW FOR MULTIVIEW AREXX PROGRAM')
SAY 'a'x||' You have just EXITED the node about ONOPEN and ONCLOSE'
SAY 'a'x' This window should go away in 4 seconds.'
DO WHILE TIME('E') < 4
END
CLOSE('STDOUT')
EXIT